home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / domacnost a kancelar / deltacalendar / DeltaCalendarSetup.exe / DeltaCalendar.exe / 0 / RCDATA / TFRMMEMO / TFRMMEMO.txt
Text File  |  2006-01-30  |  3KB  |  168 lines

  1. object frmMemo: TfrmMemo
  2.   Left = 350
  3.   Top = 127
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsToolWindow
  6.   Caption = 'Memo'
  7.   ClientHeight = 192
  8.   ClientWidth = 272
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   OnCreate = FormCreate
  17.   OnShortCut = FormShortCut
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object lblMax: TLabel
  22.     Left = 162
  23.     Top = 128
  24.     Width = 103
  25.     Height = 13
  26.     Alignment = taRightJustify
  27.     Caption = '(Max. 255 characters)'
  28.   end
  29.   object lblMonth: TLabel
  30.     Left = 72
  31.     Top = 8
  32.     Width = 36
  33.     Height = 13
  34.     Caption = 'Month :'
  35.   end
  36.   object lblType: TLabel
  37.     Left = 14
  38.     Top = 132
  39.     Width = 30
  40.     Height = 13
  41.     Alignment = taRightJustify
  42.     Caption = 'Type :'
  43.   end
  44.   object lblDay: TLabel
  45.     Left = 8
  46.     Top = 8
  47.     Width = 25
  48.     Height = 13
  49.     Caption = 'Day :'
  50.   end
  51.   object lblYear: TLabel
  52.     Left = 184
  53.     Top = 8
  54.     Width = 28
  55.     Height = 13
  56.     Caption = 'Year :'
  57.   end
  58.   object memText: TMemo
  59.     Left = 8
  60.     Top = 56
  61.     Width = 257
  62.     Height = 65
  63.     MaxLength = 255
  64.     TabOrder = 0
  65.   end
  66.   object btnOk: TButton
  67.     Left = 128
  68.     Top = 160
  69.     Width = 65
  70.     Height = 25
  71.     Caption = 'Ok'
  72.     Default = True
  73.     TabOrder = 1
  74.     OnClick = btnOkClick
  75.   end
  76.   object btnCancel: TButton
  77.     Left = 200
  78.     Top = 160
  79.     Width = 65
  80.     Height = 25
  81.     Caption = 'Cancel'
  82.     TabOrder = 2
  83.     OnClick = btnCancelClick
  84.   end
  85.   object updDay: TUpDown
  86.     Left = 49
  87.     Top = 24
  88.     Width = 16
  89.     Height = 21
  90.     Associate = edtDay
  91.     Min = 1
  92.     Max = 31
  93.     Position = 1
  94.     TabOrder = 3
  95.     Thousands = False
  96.     Wrap = False
  97.   end
  98.   object updYear: TUpDown
  99.     Left = 249
  100.     Top = 24
  101.     Width = 16
  102.     Height = 21
  103.     Associate = edtYear
  104.     Min = 1
  105.     Max = 9999
  106.     Position = 2000
  107.     TabOrder = 4
  108.     Thousands = False
  109.     Wrap = False
  110.   end
  111.   object cmbMonth: TComboBox
  112.     Left = 72
  113.     Top = 24
  114.     Width = 105
  115.     Height = 21
  116.     Style = csDropDownList
  117.     ItemHeight = 13
  118.     ItemIndex = 0
  119.     TabOrder = 5
  120.     Text = 'Janvier'
  121.     Items.Strings = (
  122.       'Janvier'
  123.       'F'#233'vrier'
  124.       'Mars'
  125.       'Avril'
  126.       'Mai'
  127.       'Juin'
  128.       'Juillet'
  129.       'Ao'#251't'
  130.       'Septembre'
  131.       'Octobre'
  132.       'Novembre'
  133.       'D'#233'cembre')
  134.   end
  135.   object cmbMemoType: TComboBox
  136.     Left = 48
  137.     Top = 128
  138.     Width = 97
  139.     Height = 21
  140.     Style = csDropDownList
  141.     ItemHeight = 13
  142.     ItemIndex = 0
  143.     TabOrder = 6
  144.     Text = 'Single'
  145.     Items.Strings = (
  146.       'Single'
  147.       'Weekly'
  148.       'Monthly'
  149.       'Yearly')
  150.   end
  151.   object edtDay: TEdit
  152.     Left = 8
  153.     Top = 24
  154.     Width = 41
  155.     Height = 21
  156.     TabOrder = 7
  157.     Text = '1'
  158.   end
  159.   object edtYear: TEdit
  160.     Left = 184
  161.     Top = 24
  162.     Width = 65
  163.     Height = 21
  164.     TabOrder = 8
  165.     Text = '2000'
  166.   end
  167. end
  168.